Don't return TRUE from the event handler, that blocks all event signals on
authorAlexander Larsson <alexl@redhat.com>
Thu, 29 Mar 2001 12:25:15 +0000 (12:25 +0000)
committerAlexander Larsson <alexl@src.gnome.org>
Thu, 29 Mar 2001 12:25:15 +0000 (12:25 +0000)
2001-03-29  Alexander Larsson  <alexl@redhat.com>

* gtk/gtktooltips.c (gtk_tooltips_event_handler):
Don't return TRUE from the event handler, that blocks all
event signals on the tooltip widget. Now you can press buttons
in toolbars again.

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtktooltips.c

index 1d47c86b5a2724a600db27b86dbde85bc8de9f97..79c738ddd54aa3c467414c76bc3343dca4e488c2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2001-03-29  Alexander Larsson  <alexl@redhat.com>
+
+       * gtk/gtktooltips.c (gtk_tooltips_event_handler):
+       Don't return TRUE from the event handler, that blocks all
+       event signals on the tooltip widget. Now you can press buttons
+       in toolbars again.
+
 Wed Mar 28 19:20:43 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/testtext.c (create_buffer): Add missing NULL on
index 1d47c86b5a2724a600db27b86dbde85bc8de9f97..79c738ddd54aa3c467414c76bc3343dca4e488c2 100644 (file)
@@ -1,3 +1,10 @@
+2001-03-29  Alexander Larsson  <alexl@redhat.com>
+
+       * gtk/gtktooltips.c (gtk_tooltips_event_handler):
+       Don't return TRUE from the event handler, that blocks all
+       event signals on the tooltip widget. Now you can press buttons
+       in toolbars again.
+
 Wed Mar 28 19:20:43 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/testtext.c (create_buffer): Add missing NULL on
index 1d47c86b5a2724a600db27b86dbde85bc8de9f97..79c738ddd54aa3c467414c76bc3343dca4e488c2 100644 (file)
@@ -1,3 +1,10 @@
+2001-03-29  Alexander Larsson  <alexl@redhat.com>
+
+       * gtk/gtktooltips.c (gtk_tooltips_event_handler):
+       Don't return TRUE from the event handler, that blocks all
+       event signals on the tooltip widget. Now you can press buttons
+       in toolbars again.
+
 Wed Mar 28 19:20:43 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/testtext.c (create_buffer): Add missing NULL on
index 1d47c86b5a2724a600db27b86dbde85bc8de9f97..79c738ddd54aa3c467414c76bc3343dca4e488c2 100644 (file)
@@ -1,3 +1,10 @@
+2001-03-29  Alexander Larsson  <alexl@redhat.com>
+
+       * gtk/gtktooltips.c (gtk_tooltips_event_handler):
+       Don't return TRUE from the event handler, that blocks all
+       event signals on the tooltip widget. Now you can press buttons
+       in toolbars again.
+
 Wed Mar 28 19:20:43 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/testtext.c (create_buffer): Add missing NULL on
index 1d47c86b5a2724a600db27b86dbde85bc8de9f97..79c738ddd54aa3c467414c76bc3343dca4e488c2 100644 (file)
@@ -1,3 +1,10 @@
+2001-03-29  Alexander Larsson  <alexl@redhat.com>
+
+       * gtk/gtktooltips.c (gtk_tooltips_event_handler):
+       Don't return TRUE from the event handler, that blocks all
+       event signals on the tooltip widget. Now you can press buttons
+       in toolbars again.
+
 Wed Mar 28 19:20:43 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/testtext.c (create_buffer): Add missing NULL on
index 1d47c86b5a2724a600db27b86dbde85bc8de9f97..79c738ddd54aa3c467414c76bc3343dca4e488c2 100644 (file)
@@ -1,3 +1,10 @@
+2001-03-29  Alexander Larsson  <alexl@redhat.com>
+
+       * gtk/gtktooltips.c (gtk_tooltips_event_handler):
+       Don't return TRUE from the event handler, that blocks all
+       event signals on the tooltip widget. Now you can press buttons
+       in toolbars again.
+
 Wed Mar 28 19:20:43 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/testtext.c (create_buffer): Add missing NULL on
index 1d47c86b5a2724a600db27b86dbde85bc8de9f97..79c738ddd54aa3c467414c76bc3343dca4e488c2 100644 (file)
@@ -1,3 +1,10 @@
+2001-03-29  Alexander Larsson  <alexl@redhat.com>
+
+       * gtk/gtktooltips.c (gtk_tooltips_event_handler):
+       Don't return TRUE from the event handler, that blocks all
+       event signals on the tooltip widget. Now you can press buttons
+       in toolbars again.
+
 Wed Mar 28 19:20:43 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/testtext.c (create_buffer): Add missing NULL on
index 52a3f0b38ab5ab363798d8f8ab6fd843cfdf91c4..fb25448f51d1c27437b3a57c6362c039705c447f 100644 (file)
@@ -489,7 +489,7 @@ gtk_tooltips_event_handler (GtkWidget *widget,
       
     default:
       gtk_tooltips_set_active_widget (tooltips, NULL);
-      return TRUE;
+      return FALSE;
       break;
     }